home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 August / Software of the Month Club 1996 August.iso / mac / Desktop Publishing / HTML Voc 1.3 / HTML Vocabulary 1.3 / HTML Vocabulary 1.3.rsrc / TEXT_1800_Pictures.txt < prev    next >
Encoding:
Text File  |  1996-05-29  |  3.6 KB  |  128 lines

  1.  
  2.  Pictures    
  3.  
  4.  
  5.  
  6. <IMG SRC="url" [...]>
  7.  
  8. Use it to insert pictures inside the pages. The following
  9.  tags can be used after IMG:
  10.  
  11.  
  12.  
  13. SRC="url"
  14.  
  15. The path or destination to the picture file. Can be the
  16.  whole url or just the filename, if the file is located
  17.  in the same folder as the rest of the page.
  18.  
  19.  
  20.  
  21. ALT="text"
  22.  
  23. Use it to display text if the picture, by some reason,
  24.  can't be loaded. This happens if the filepath is wrong,
  25.  if the user stops the loading or the browser can't show
  26.  pictures.
  27.  
  28.  
  29.  
  30. LOWSRC="url"
  31.  
  32. Use it to display a preview of the picture, for example a
  33.  black and white picture. The LOWSRC picture loads first,
  34.  while the SRC picture won't load until the page is done.
  35.  
  36.  
  37.  
  38. HEIGHT=n|n%
  39.  
  40. Changes the height of the picture in dots or percent.
  41.  
  42.  WIDTH=n|n%
  43.  
  44. Changes the width of the picture in dots or percent.
  45.  
  46.  
  47.  
  48. ISMAP
  49.  
  50. Define that the picture is a imagemap, which means that
  51.  it use the picture as links, defined where on the picture
  52.  the user clicks. Please read the Maps chapter for more.
  53.  
  54.  USEMAP=[url#]anchor
  55.  Defines that the picture is a Cliet Side map. These maps
  56.  is stored within a document. If the map is stored in the
  57.  same document as the IMG tag, url is not needed. anchor is
  58.  the name of the map, see the 'Maps' chapter for more. USEMAP
  59.  can be used together with ISMAP. If the browser doesn't
  60.  supports USEMAP maps, ISMAP will be used instead.
  61.  
  62.  
  63.  
  64. BORDER=n
  65.  
  66. Define the width of the border around the picture in dots.
  67.  The picture will only get a border if it is a link.
  68.  
  69.  
  70.  
  71. VSPACE=n
  72.  
  73. Define the vertical space to the text next to the picture.
  74.  
  75.  HSPACE=n
  76.  
  77. Define the horizontal space to the text next to the
  78.  picture.
  79.  
  80.  ALIGN=LEFT|RIGHT|TOP|TEXTTOP|MIDDLE|ABSMIDDLE|BASELINE
  81.  |BOTTOM|ABSBOTTOM
  82.  
  83. Align the picture on the page. Left and right aligns the
  84.  picture to the left resp. right side of the page. TOP
  85.  puts the top side of the picture in the same height as
  86.  the highest thing on the line. TEXTTOP does the same with
  87.  the highest character on the line. MIDDLE aligns the
  88.  picture to the center of the baseline of the textline,
  89.  while ABSMIDDLE aligns it to the center of the middleline
  90.  of the text.BASELINE and BOTTOM put the bottom line of the
  91.  pictures on the same height as the baseline of the textline.
  92.  ABSBOTTOM put it on the same height as the bottom thing on
  93.  the text line, e.g. in characters like g, j etc.
  94.  
  95.  DYNSRC=url
  96.  Stands for 'Dynamic source' and defines the url to a sound
  97.  or VRML file. If the browser doesn't support dynamic IMG's,
  98.  the normal SRC will be used. A sound must be in the format
  99.  .au, .wav eller .mid. VRML (Virtual Modelling Language) is
  100.  a 3D standard for WWW pages. DYNSRC is an Internet Explorer
  101.  extension.
  102.  
  103.  CONTROLS
  104.  Defines if a DYNSRC object should display controls or not.
  105.  
  106.  LOOP=n|INFINITE
  107.  Defines the number of lopps for a DYNSRC object. INFINITE
  108.  starts over until the page is closed.
  109.  
  110.  START=FILEOPEN, MOUSEOVER
  111.  Defines when the DYNSRC object will start. Both parameters
  112.  can be used, or just a single.
  113.  
  114.  Picture formats    
  115.  
  116.  The picture should be either in the gif or jpeg formats.
  117.  Other file formats requires a special helper application or
  118.  plugin for the reader, and isn't recomended. The gif format
  119.  is devloped by Compuserve, and allows transparency pictures,
  120.  interlacted pictures (where it is displayed while it loads)
  121.  and can be used as webmaps (please read the Maps chapter).
  122.  Jpeg (Joint Photographers Expert Group) compresses the picture
  123.  to be smaller than a gif file, without making any big changes
  124.  to the quality. Netscape 2.0 can read "progressive JPEG", which
  125.  has the same features as the gif format. Progressive JPEG's
  126.  will be supported in Internet Explorer, but is not a standard.
  127.  
  128.